home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Equipement / hMailServer / hMailServer-4.1-Build-136.exe / {app} / PHPWebAdmin / domain_edit.php < prev    next >
PHP Script  |  2005-07-17  |  3KB  |  78 lines

  1. <?php
  2. /*
  3. ** $Id: domain_edit.php,v 1.6 2005/07/17 19:01:44 hmailserver Exp $
  4. **
  5. **    hMailServer - Web interface
  6. **
  7. **    File formatted using TAB size 4
  8. **
  9. **    Get hMailserver at http://www.hmailserver.com
  10. **
  11. **    Author: Steen Rab°l <srabol@mail.tele.dk>
  12. **    Copyright (c) 2004, Steen Rab°l <srabol@mail.tele.dk>
  13. **
  14. **  This program is free software; you can redistribute it and/or modify
  15. **  it under the terms of the GNU General Public License as published by
  16. **  the Free Software Foundation; either version 2 of the License, or
  17. **  (at your option) any later version.
  18. **
  19. **  You may not change or alter any portion of this comment or credits
  20. **  of supporting developers from this source code or any supporting
  21. **  source code which is considered copyrighted (c) material of the
  22. **  original comment or credit authors.
  23. **
  24. **  This program is distributed in the hope that it will be useful,
  25. **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27. **  GNU General Public License for more details.
  28. **
  29. **  You should have received a copy of the GNU General Public License
  30. **  along with this program; if not, write to the Free Software
  31. **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  32. **
  33. */
  34.  
  35.  
  36. $DomainID    = hmailGetVar("DomainID",0);
  37. $function    = hmailGetVar("function");
  38.  
  39. if (!hmailHasDomainAccess($DomainID))
  40.     hmailHackingAttemp(); // Domain admin but not for this domain.
  41.  
  42. $admin_rights = (hmailGetAdminLevel()  === ADMIN_SERVER);
  43.  
  44. $hmailSmarty->assign("admin_rights",$admin_rights);
  45.  
  46. switch($function)
  47. {
  48.     case "doedit":
  49.         $obDomain = $obBaseApp->Domains->ItemByDBID($DomainID);
  50.  
  51.           // These properties should only be changed
  52.           // if the user is an admin.
  53.           
  54.           if ($admin_rights)
  55.           {
  56.              
  57.                 $obDomain->Active = (hmailGetVar("Active") == "1") ? 1 : 0;
  58.                 
  59.                 $MaxMessageSize = hmailGetVar("MaxMessageSize");
  60.                 if ($MaxMessageSize == "")
  61.                    $MaxMessageSize = 0;
  62.                 
  63.                 $obDomain->MaxMessageSize    = $MaxMessageSize;
  64.           }
  65.                   
  66.           $obDomain->PostMaster = hmailGetVar("Postmaster","");
  67.           $obDomain->Save();
  68.  
  69.        
  70.         header("refresh: 0; url=index.php?page=domain_edit&DomainID=$DomainID");
  71.         exit();
  72.         break;
  73.     default:
  74.         $hmailSmarty->assign("domain",$obBaseApp->Domains->ItemByDBID($DomainID));
  75.         $hmailSmarty->assign("pagecontent", $hmailSmarty->fetch('domain_edit.tpl'));
  76.         break;
  77. }
  78. ?>